home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / tcclib.exe / BIT.C < prev    next >
Encoding:
Text File  |  1989-07-18  |  49 b   |  5 lines

  1. unsigned Bit( int x )
  2. {
  3.     return( 1 << x );
  4. }
  5.